home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tcclib.exe
/
lha
/
GETCUR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1989-07-18
|
188b
|
12 lines
#include <dos.h>
void GetCursor( int *Top, int *Bottom )
{
union REGS reg;
reg.x.ax = 0x0300;
int86( 0x10, ®, ® );
*Bottom = reg.h.ch & 15;
*Top = reg.h.cl & 15;
}